MMDF

Section: C Library Functions (3)
Index Return to Main Contents
 

NAME

MMDF (mm_) Mail Submission and Pickup  

SYNOPSIS

#include "util.h"
#include "mmdf.h"

mm_init ()
/* get ready */
mm_end (type)
/* done with mail */ int type; /* OK or NOTOK */
mm_sbinit ()
/* initialize submission */
mm_sbend ()
/* done with submission */
mm_pkinit (chname)
/* initialize for pickup */
    char         *chname;    /* Channel being picked up */
mm_pkend ()
/* done with pickup */
mm_rrply (valstr, len)
/* get a reply */
    struct rp_bufstruct *valstr;
    int          *len;
mm_wrply (valstr, len)
/* send a reply */
    struct rp_bufstruct *valstr;
    int          len;
mm_rrec (linebuf, len)
/* read one "record" */
    char *linebuf;
    int  *len;      /* sizeof buf on call, nread on return */
mm_rstm (buffer, len)
/* buffered text read */
    char *buffer;
    int  *len;      /* sizeof buf on call, nread on return */
mm_wrec (linebuf, len)
/* write a record/packet */
    char *linebuf;
    int  len;
mm_wstm (buffer, len)
/* buffered text write */
    char *buffer;
    int  len;
mm_rinit (info, retadr)
/* message initialization */
    char *info,
         *retadr;
mm_radr (host, adr)
/* read an address */
    char *host,
         *adr;
mm_rtxt (buffer, len)
/* buffered msg text read */
    char *buffer;
    int  *len;      /* sizeof buf on call, nread on return */
mm_winit (vianet, info, retadr)
/* initialize for one message */
    char *vianet,
         *info,
         *retadr;   /* if == 0, use 'r' or 's' in info */
mm_wadr (host, adr)
/* write one address */
    char *host,
         *adr;   /* adr@host, if host is null */
mm_waend ()
/* end of address list */
mm_wtxt (buffer, len)
/* buffered msg text write */
    char *buffer;
    int  len;
mm_wtend ()
/* end of message text */  

DESCRIPTION

The mm package is intended to simplify a user program's task of interacting with MMDF. This will primarily be used for message submission (posting). The basic sequence of calls is to initialize the package, initialize for the submission of one message, indicate the addresses for the message and receive validations for them, send the message text, terminate the message and receive a final validation for the message, and then optionally repeat submission from the point of initializing for submission.

Note that the mm package depends on certain variables having been initialized. It is important to call mmdf_init() before using this package.

It is important to note the relationship between the info and sender arguments to mm_winit(). If the info strings contains either `r' or `s', then the sender must be a (char *)0.  

Sample Submission Code

The following depicts a typical use of calls to mm. (No attempt is made to provide for the way a user might choose to acquire the address and text information needed for the variables "sender", "host", "adr", or "buffer".)

send_manage () { /* submit a batch of messages */ if (rp_isbad (mm_init()) || rp_isbad (mm_sbinit())) abort-submit; /* initialize for submission */ while (more-messages) { /* process each message */ if (rp_isbad (do_a_message ())) abort-submit; } return (RP_OK); } do_a_message () { /* process a single message */ struct rp_bufstruct thereply; int len; if (rp_isbad (mm_winit("", "mv", sender)) || rp_isbad (mm_rrply(&thereply, &len) || rp_isbad (thereply.rp_val)) abort-submit; /* initialize the message */ while (more_addresses) { /* step through address list */ if (rp_isbad (do_an_address ())) abort-submit; } if (rp_isbad (mm_waend ())) abort-submit; /* indicate no more addresses */ return (do_text ()); } do_an_address () { /* process a single address */ struct rp_bufstruct thereply; int len; /* somehow begin with a host and adr */ if (rp_isbad (mm_wadr(host, adr)) || rp_isbad (mm_rrply (&thereply, &len))) { abort-submit; } /* send address & get status */ switch (rp_gval (thereply.rp_val)) { /* was address acceptable? */ case RP_AOK: /* yes */ case RP_DOK: { note-the-acceptance } break; case RP_NO: /* not acceptable */ case RP_USER: case RP_NDEL: case RP_AGN: case RP_NS: case RP_NOOP: case RP_PARM: { note-failure; } break; default: /* unexpected reply value */ { probably-should-treat-as-illegal-value; } } return (RP_OK); } do_text () { struct rp_bufstruct thereply; int len; len = sizeof buffer; while (more-text) if (rp_isbad (mm_wtxt (buffer, len))) abort-submit; len = sizeof buffer; } /* send a chunk of text */ if (rp_isbad (mm_wtend ())) abort_submit; if (rp_isbad (mm_rrply (&thereply, &len))) abort-submit; switch (rp_gval (thereply.rp_val)) { /* was text acceptable? */ case RP_OK: case RP_MOK: { note-acceptance; } break; case RP_NO: case RP_NDEL: case RP_AGN: case RP_NS: case RP_NOOP: { note-failure; } break; default: { treat-as-illegal-value } break; } return (RP_OK); }

 

Index

NAME
SYNOPSIS
DESCRIPTION
Sample Submission Code

This document was created by man2html, using the manual pages.
Time: 06:42:36 GMT, May 19, 2025